home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Programming / Programming Tools / Lightspeed Source Code / PBHDEFS.H < prev   
Encoding:
C/C++ Source or Header  |  1986-07-12  |  1.2 KB  |  27 lines  |  [TEXT/KAHL]

  1. /* PBHDEFS.H- HFS PBCALLS FOR LIGHTSPEED C
  2.  some adapted for Lightspeed from the January 1986 MacTutor Article
  3.  My Mike Schuster entitled "Programming for HFS 
  4.  some added by John Pence, MacMan, Inc. Houston, Texas*/ 
  5.  
  6. #define PBOpenWD(pb, a)        pbCall( pb, a, 0xA260, 1 )
  7. #define PBCloseWD(pb, a)    pbCall( pb, a, 0xA260, 2 )
  8. #define PBCatMove(pb, a)    pbCall( pb, a, 0xA260, 5 ) 
  9. #define PBDirCreate(pb, a)    pbCall( pb, a, 0xA260, 6 )
  10. #define PBGetWDInfo(pb, a)    pbCall( pb, a, 0xA260, 7 )
  11. #define PBGetFCBInfo(pb, a)    pbCall( pb, a, 0xA260, 8 )
  12. #define PBGetCatInfo(pb, a)    pbCall( pb, a, 0xA260, 9 )
  13.  
  14. #define PBHOpen(pb, a)        pbCall( pb, a, 0xA200 )
  15. #define PBHGetVInfo(pb, a)    pbCall( pb, a, 0xA207 )
  16. #define PBHCreate(pb, a)    pbCall( pb, a, 0xA208 )
  17. #define PBHDelete(pb, a)    pbCall( pb, a, 0xA209 )
  18. #define PBHGetVol(pb, a)    pbCall( pb, a, 0xA214 )
  19. #define PBHGetFInfo(pb, a)    pbCall( pb, a, 0xA20C )
  20. #define PBHOpenRF(pb, a)    pbCall( pb, a, 0xA20A )
  21. #define PBHSetFInfo(pb, a)    pbCall( pb, a, 0xA20D )
  22. #define PBHSetVol(pb, a)    pbCall( pb, a, 0xA215 )
  23. #define PBHSetFVers(pb, a)    pbCall( pb, a, 0xA243 )
  24. #define PBHRename(pb, a)    pbCall( pb, a, 0xA20B )
  25. #define PBHSetFLock(pb, a)    pbCall( pb, a, 0xA241 )
  26. #define PBHRstFLock(pb, a)    pbCall( pb, a, 0xA242 )
  27.